Conversation
Enhance enrich_logs.py to attach artifact metadata to log entries, including id, name, size, and a stable GitHub web URL derived from the resolved repository and run id. Introduce fetch_logs_metadata.py which orchestrates Github API calls using `gh` for convenience. Also incorporates the ad-hoc usage in publish.yml. Introduce refresh_logs.py as a one-shot local helper.
Make enrich_logs use a positional input argument instead of --input. The positional defaults to logs.json, and --output now defaults to the same path as input when omitted.
Add a tag push trigger to publish.yml and update the gh-pages-nightly job condition to allow both scheduled runs and tag pushes. Restrict channel build jobs to workflow_run and workflow_dispatch so tag pushes do not trigger channel rebuilds.
Sort the "Currently failing" section in three groups: 1. reasons starting with a three-digit status code 2. all remaining reasons 3. reasons starting with "fatal: 404" Within each group, entries are still sorted by package name. Status code entries are additionally ordered numerically by code.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Enhance enrich_logs.py to attach artifact metadata to log entries,
for later display on the status page which solves the pain-point in finding the right backup if something went wrong. (The Github WebUI has no search for that and is also extremely slow in general.)
Also: